home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / harvest.cpt / Harvest C / DHashTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-10  |  277 b   |  20 lines

  1. /*
  2.     DHashTable.h
  3.     
  4. */
  5.  
  6. #include "DCollection.h"
  7. #include "DHashLink.h"
  8. #include "DSymbol.h"
  9.  
  10. class DHashTable : public DCollection {
  11.     long numSlots;
  12.     DHashLink **theSlots;
  13.     
  14.     public:
  15.     void IHashTable(long);
  16.     void Add(DSymbol *);
  17.     void Dispose(void);
  18.     DSymbol *Find(char *);
  19. };
  20.